home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / serial / dim-1.000 / dim-1 / dim-1.03 / src / usage.c < prev   
C/C++ Source or Header  |  1994-01-26  |  732b  |  23 lines

  1. #include "dim.h"
  2.  
  3. void usage ()
  4. {
  5.     error ("\n"
  6.         "ICCE Dial-In Monitor  V" VERSION "\n"
  7.         "Copyright (c) ICCE " YEAR ". All rights reserved.\n"
  8.     "This program may be distributed and modified in accordance with\n"
  9.         "the GNU General Public Licence.\n"
  10.         "\n"
  11.         "Dim by Frank B. Brokken.\n"
  12.         "\n"
  13.         "Usage: dim -flag, where flag may be:\n"
  14.     "       -disable             : disables dial-in\n"
  15.         "       -enable              : enables dial-in\n"
  16.         "       -file                : shows getty's definition file\n"
  17.         "       -wake                : wakeup init to reload getty\n"
  18.         "\n"
  19.         "Flags may be abbreviated, e.g., \"-wa\" is equivalent to "
  20.                                        " \"-wake\".\n"
  21.         "\n");
  22. }
  23.